home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
lang
/
sofa.lha
/
sofa
/
smalleiffel
/
lib_show
/
basic_time
/
example4.e
< prev
next >
Wrap
Text File
|
2000-03-25
|
560b
|
28 lines
class EXAMPLE4
--
-- Using the TIME_IN_FRENCH class.
--
creation make
feature {NONE}
make is
local
basic_time: BASIC_TIME;
format: TIME_IN_FRENCH;
do
basic_time.update;
format.set_basic_time(basic_time);
io.put_string("Le grand format :%N");
format.set_short_mode(false);
format.print_on(io);
io.put_new_line;
io.put_string("Le petit format :%N");
format.set_short_mode(true);
format.print_on(io);
io.put_new_line;
end;
end